The default location for the lease file has changed in odhcpd, update
rpcd-mod-luci to reflect the new default location.
See:
https://github.com/openwrt/openwrt/blob/
c9e7f32c4c09277ae945299d068230226994c19c/package/network/services/odhcpd/files/odhcpd.defaults#L29-L31
Signed-off-by: David Härdeman <[email protected]>
add_leasefile("/tmp/dhcp.leases", false);
if (!find_leasefiles(uci, true))
- add_leasefile("/tmp/hosts/odhcpd", true);
+ add_leasefile("/tmp/odhcpd.leases", true);
uci_free_context(uci);
}